/*----------------------------------------------------------------
      Carousel
----------------------------------------------------------------*/
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.slide .image {
  height: 74vh;
  width: 100%;
  object-fit: cover;
}
.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.image-data h1 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}
.image-data p {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .image-data h1 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}
}
/*----------------------------------------------------------------
     Carousel
----------------------------------------------------------------*/